failure 445:

Requirement failed: {scalb.14.01.01} Function executed successfully with EOK error code, while `isZero_Unifloat(x) && isInfinity_Unifloat(n) && (n->sign == 1) || isInfinity_Unifloat(x) && isInfinity_Unifloat(n) && (n->sign == -1) == true` means that EDOM SHALL be set
location
trace /var/opt/lsb/test/olver-core/2014-01-29_05-08-38/util_float_scenario.utz (util_float_scenario.utt), line 17406
occurence
scenario util_float_scenario
specification function scalb_spec()
parameter value  CallContext context = [pid=8040,thr=b7498700]
parameter value  Unifloat * @x = (double) -Infinity
parameter value  Unifloat * x = (double) -Infinity
parameter value  Unifloat * @n = (double) -Infinity
parameter value  Unifloat * n = (double) -Infinity
parameter value  ErrorCode * @errno = EOK
parameter value  ErrorCode * errno = EOK
return value  (Unifloat *) (double) NaN
coverage
& branch
C
x and n are infinity
properties
REQ failed scalb.14.01.01
kind POSTCONDITION_FAILED
similar known bug(s)
The scalb() family of functions shall compute x*r^n, where r is the radix of the machine's floating-point arithmetic. According to LSB, the functions shall set EDOM error code when x is zero and n is +Inf, or x is Inf and n is -Inf and ERANGE when overflow occurs. But the functions sets error code EOK in these cases.